home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 4287 / 4287.xpi / chrome / splitbrowser.jar / content / splitbrowser / sanitize / sanitizeOverlay.js next >
Text File  |  2009-11-05  |  462b  |  26 lines

  1. Sanitizer.prototype.items.splitBrowserUndoCache = {
  2.     clear : function()
  3.     {
  4.         this._module.clearEntries(this.range);
  5.         this._module.saveEntries();
  6.     },
  7.     get canClear()
  8.     {
  9.         return true;
  10.     },
  11.     range : null,
  12.  
  13.     get _module() 
  14.     {
  15.         if (!this.__module) {
  16.             this.__module = {};
  17.             Components.utils.import(
  18.                 'resource://splitbrowser-modules/undoCache.js',
  19.                 this.__module
  20.             );
  21.         }
  22.         return this.__module.undoCache;
  23.     },
  24.     __module : null,
  25. };
  26.